home *** CD-ROM | disk | FTP | other *** search
/ Clickx 115 / Clickx 115.iso / software / tools / windows / tails-i386-0.16.iso / live / filesystem.squashfs / var / lib / dpkg / info / dhcp3-client.postrm < prev    next >
Encoding:
Text File  |  2012-09-23  |  240 b   |  16 lines

  1. #!/bin/sh
  2.  
  3. set -e
  4.  
  5. if [ "$1" = "purge" ]; then
  6.     # Remove old lease database
  7.     rm -f /var/lib/dhcp3/dhclient.*leases*
  8.  
  9.     # Try to remove old directory
  10.     if [ -d /var/lib/dhcp3 ]; then
  11.         rmdir --ignore-fail-on-non-empty /var/lib/dhcp3/
  12.     fi
  13. fi
  14.  
  15.  
  16.